home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Codigos_Prontos / CSS / Texto / CSS Drop Caps.txt < prev    next >
Text File  |  2008-08-19  |  277b  |  10 lines

  1.  
  2. <p class="introduction"> This paragraph has the class "introduction". If your browser supports the pseudo-class "first-letter", the first letter will be a drop-cap. 
  3.  
  4. p.introduction:first-letter {
  5. font-size : 300%;
  6. font-weight : bold;
  7. float : left;
  8. width : 1em;
  9. }
  10.